/* --- 1. VARIABLES & RESET --- */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-hover: #1d4ed8;
    --accent: #00d2ff;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --slate-200: #e2e8f0;
    --slate-600: #475569;
    --dark: #0f172a;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --btn-grad: linear-gradient(135deg, #2563eb 0%, #00d2ff 100%);
    --btn-shadow: rgba(37, 99, 235, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
}

/* --- 2. LAYOUT & GLOBALS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: var(--btn-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* --- 3. NAVIGATION --- */
.main-header {
    padding: 1rem 0;
    background: var(--white);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--slate-200);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--dark);
    letter-spacing: -0.05em;
    z-index: 1001;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .cta-btn-nav {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: opacity 0.3s, transform 0.2s;
}

.nav-links .cta-btn-nav:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: white;
}

/* --- 4. HERO SECTION (CORPORATE) --- */
.hero {
    padding: 80px 0;
}

.corp-hero-v2 {
    background: linear-gradient(160deg, #ffffff 0%, #f0f7ff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1.2;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* --- 5. B2B FEATURES GRID --- */
.features-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    background: var(--white);
    border-color: var(--primary);
}

.f-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* --- 6. CORPORATE BOOKING & FORMS --- */
.booking-section {
    padding: 80px 0;
}

.corp-form-bg {
    background-color: #f1f5f9;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.booking-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.corp-card {
    border-top: 4px solid var(--primary);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
}

.book-btn-final {
    width: 100%;
    background: var(--btn-grad);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--btn-shadow);
    transition: transform 0.2s;
}

.book-btn-final:hover {
    transform: translateY(-2px);
}

/* --- 7. SIDEBAR & INFO --- */
.info-box {
    background: var(--btn-grad);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.wa-link {
    display: inline-block;
    margin-top: 1rem;
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.testimonial-mini {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    font-style: italic;
}

/* --- 8. MOBILE MENU & RESPONSIVE --- */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
}

@media (max-width: 992px) {
    .hero-grid, .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 80%;
        height: 100vh;
        padding: 5rem 2rem;
        transition: 0.4s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* --- Footer --- */
.footer {
    background-color: #d1d5de;
    color: #06090c;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-tagline {
    color: #94a3b8;
    margin: 1.2rem 0;
    max-width: 250px;
}

.footer-tel {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin: 1rem 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.stripe-badge {
    height: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}


/* --- Social Icons Styling --- */
.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #94a3b8; /* Matching your link color */
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #06090c; /* Darker color on hover to match your text */
    transform: translateY(-3px);
}

/* --- WhatsApp Button --- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #1ebc56;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.25rem;
    margin-right: 8px;
}


